home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 21 / CU Amiga Magazine's Super CD-ROM 21 (1998)(EMAP Images)(GB)[!][issue 1998-04].iso / CUCD / Programming / Python-1.4 / Python1.4_Source / Modules / protos / cmathmodule_protos.h < prev    next >
Text File  |  1996-12-15  |  2KB  |  38 lines

  1. /* Prototypes for functions defined in Modules/cmathmodule.c  */
  2.  
  3. static Py_complex c_acos(Py_complex x);
  4. static Py_complex c_acosh(Py_complex x);
  5. static Py_complex c_asin(Py_complex x);
  6. static Py_complex c_asinh(Py_complex x);
  7. static Py_complex c_atan(Py_complex x);
  8. static Py_complex c_atanh(Py_complex x);
  9. static Py_complex c_cos(Py_complex x);
  10. static Py_complex c_cosh(Py_complex x);
  11. static Py_complex c_exp(Py_complex x);
  12. static Py_complex c_log(Py_complex x);
  13. static Py_complex c_log10(Py_complex x);
  14. static Py_complex c_prodi(Py_complex x);
  15. static Py_complex c_sin(Py_complex x);
  16. static Py_complex c_sinh(Py_complex x);
  17. static Py_complex c_sqrt(Py_complex x);
  18. static Py_complex c_tan(Py_complex x);
  19. static Py_complex c_tanh(Py_complex x);
  20. static PyObject * math_error(void);
  21. static PyObject * math_1(PyObject * args,Py_complex (* func)(Py_complex ));
  22. static PyObject * cmath_acos(PyObject * self,PyObject * args);
  23. static PyObject * cmath_acosh(PyObject * self,PyObject * args);
  24. static PyObject * cmath_asin(PyObject * self,PyObject * args);
  25. static PyObject * cmath_asinh(PyObject * self,PyObject * args);
  26. static PyObject * cmath_atan(PyObject * self,PyObject * args);
  27. static PyObject * cmath_atanh(PyObject * self,PyObject * args);
  28. static PyObject * cmath_cos(PyObject * self,PyObject * args);
  29. static PyObject * cmath_cosh(PyObject * self,PyObject * args);
  30. static PyObject * cmath_exp(PyObject * self,PyObject * args);
  31. static PyObject * cmath_log(PyObject * self,PyObject * args);
  32. static PyObject * cmath_log10(PyObject * self,PyObject * args);
  33. static PyObject * cmath_sin(PyObject * self,PyObject * args);
  34. static PyObject * cmath_sinh(PyObject * self,PyObject * args);
  35. static PyObject * cmath_sqrt(PyObject * self,PyObject * args);
  36. static PyObject * cmath_tan(PyObject * self,PyObject * args);
  37. static PyObject * cmath_tanh(PyObject * self,PyObject * args);
  38.